-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid zooming out when browsing styles if the preview mode is active #67190
Avoid zooming out when browsing styles if the preview mode is active #67190
Conversation
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message.
To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
Size Change: +13 B (0%) Total Size: 1.82 MB
ℹ️ View Unchanged
|
Using scaled zoom when previewing styles was supposed to "show more" of how the style affects the look of things. I suspect that the fact that we're in preview does not alter the fact that default scale is not showing much above the fold. But I do agree that it looks broken at the moment. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing this! Code LGTM and works as expected ✅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good change! Tested and works as described.
What?
Fixes #67166
Avoids zooming out when browsing styles if the preview mode is active.
How?
Check if
isPreviewMode
is active, and if so, don't enter zoom out.I expect it should never be possible to enter zoom out from the preview mode, so part of me wonders if this should be built-in to the
useZoomOut
hook. Or alternatively (and maybe better) into thesetZoomLevel
action. Would be good to get opinions on that.Testing Instructions
Screenshots or screencast
Before
After